home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / emulation / fmsx_2.2 / arexx / mostcompatible.fmsx < prev    next >
Text File  |  1999-06-14  |  1KB  |  55 lines

  1. /*    This is an ARexx script for use with fMSX Amiga.
  2.  
  3.     $VER: mostcompatible.fmsx 2.2 (6.6.99)
  4.  
  5.     This script sets fMSX to the most compatible settings. Some programs
  6.     will still require different settings, but when testing new software
  7.     these settings provide a good start. Once you know that something
  8.     works, try optimizing for speed.
  9. */
  10.  
  11. options results
  12.  
  13. address FMSX.0
  14.  
  15. /* If no device is specified for drive A:, make it the default (PC0:) */
  16.  
  17. drivea
  18. if result = 'RESULT' then
  19.     drivea 'pc0:'
  20.  
  21. /* Set one drive. Two take up more memory and cause programs to fails */
  22.  
  23. drives 1
  24.  
  25. /* Use a long enough interrupt period */
  26.  
  27. interruptperiod 1500
  28.  
  29. /* Make sure we can actually access the drives */
  30.  
  31. lockdrives on
  32.  
  33. /* Set 256KB of memory. 256KB ought to be enough for anybody... */
  34.  
  35. memory 256KB
  36.  
  37. /* Set MSX2. Booting will be slower but almost everything runs on it */
  38.  
  39. msxversion msx2
  40.  
  41. /* Most cartridges use romtype SCC1. Almost none use ASCII2, SCC2, or KONAMI2 */
  42.  
  43. romtype1 scc1
  44.  
  45. /* Most programs use the PSG... */
  46.  
  47. soundmode psg
  48.  
  49. /* ...and if we encounter an SCC program, it will most likely be normal SCC */
  50.  
  51. sccplus off
  52.  
  53.  
  54.  
  55.